/* =============================================
   PRÉSENCE WEB SOLUTIONS - STYLE PWS CRM
   Même design que PWS_CRM_Complete
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #071426;
  --bg-secondary: #0a1929;
  --bg-card: #112a4a;
  --bg-card-light: #153352;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8960c;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --white: #ffffff;
  --off-white: #f8f9fa;
  --cream: #fdfcf9;
  --gray: #6b7280;
  --text-dark: #1f2937;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border-gold: rgba(212, 175, 55, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: var(--bg-primary) !important;
  color: var(--white) !important;
  line-height: 1.6 !important;
  overflow-x: hidden !important;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.08s ease;
}

/* ============ PARTICLES BACKGROUND ============ */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 8px var(--gold);
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(7, 20, 38, 0.95) 0%, rgba(7, 20, 38, 0.8) 100%);
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%) 1;
}

.nav.scrolled {
  background: rgba(7, 20, 38, 0.98);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.1);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
}

.brand-logo-wrap {
  width: 55px;
  height: 55px;
  position: relative;
}

.brand-logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 14px;
  transition: var(--transition);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)); }
  50% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8)); }
}

.brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.5));
}

.brand .name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  letter-spacing: 2px;
}

.brand .tag {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu a:hover {
  color: var(--white);
}

.menu a:hover::before {
  width: 60%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 14px;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .menu { display: none !important; }
  body.menu-open .menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 25, 41, 0.98) !important;
    backdrop-filter: blur(30px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    z-index: 1000 !important;
  }
  body.menu-open .menu a {
    font-size: 28px !important;
    padding: 20px 40px !important;
  }
}

/* ============ CTA BUTTONS ============ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  border: 2px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cta.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.cta.primary:hover::before {
  left: 100%;
}

.cta.primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.cta.secondary {
  background: var(--bg-card);
  color: var(--gold-light);
  border: 2px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.cta.secondary:hover {
  background: var(--bg-card-light);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px 0;
  overflow: hidden;
}

/* Hero Background Image with Blur */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.4);
  transform: scale(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(7, 20, 38, 0.9) 0%, 
    rgba(10, 25, 41, 0.85) 50%,
    rgba(7, 20, 38, 0.95) 100%
  );
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orb-float 10s ease-in-out infinite;
  z-index: 1;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.3), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -2.5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: badge-glow 3s ease-in-out infinite;
}

.hero-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--gold);
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.4); }
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Animated Title */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Text reveal animation */
.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  animation: reveal-up 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION WITH BACKGROUND IMAGE ============ */
.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.section-bg .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.3);
}

.section-bg .bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(7, 20, 38, 0.95) 0%, 
    rgba(10, 25, 41, 0.9) 50%,
    rgba(7, 20, 38, 0.98) 100%
  );
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}

/* ============ SECTIONS ============ */
.section {
  padding: 120px 0;
  position: relative;
}

.section.light {
  background: var(--white);
  color: var(--text-dark);
}

.section.cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section.dark {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.kicker::before,
.kicker::after {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.kicker::before {
  background: linear-gradient(270deg, var(--gold), transparent);
}

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section.light .h2,
.section.cream .h2 {
  color: var(--navy);
}

.section-header p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray);
}

.section.dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ============ FEATURE CARDS WITH 3D EFFECT ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.feature-card .card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.feature-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-card:hover .card-image img {
  transform: scale(1.15);
}

.feature-card .card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--white), transparent);
}

.feature-card figcaption {
  padding: 30px;
  position: relative;
}

.feature-card figcaption::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.cap-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 20px;
}

.cap-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============ GLASS CARDS ============ */
.glass-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-light) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.8;
}

.glass-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.glass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

/* ============ STAT COUNTERS ============ */
.stats-section {
  padding: 80px 0;
  position: relative;
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
}

/* ============ PRICING CARDS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-intense);
  border: 2px solid var(--gold);
}

.pricing-card.featured::before {
  content: '⭐ POPULAIRE';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e6c171);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--navy);
}

.pricing-card.featured h3 {
  color: var(--white);
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-amount span {
  font-size: 18px;
  color: var(--gray);
}

.pricing-card.featured .pricing-amount span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-10px); }
}

/* ============ CHECKLIST ============ */
.checklist {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.checklist li {
  padding: 14px 0;
  padding-left: 36px;
  position: relative;
  color: var(--gray-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.checklist li:hover {
  padding-left: 42px;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  width: 28px;
  height: 28px;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.pricing-card.featured .checklist li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .checklist li::before {
  background: rgba(212, 168, 83, 0.25);
}

/* ============ CALLOUT ============ */
.callout {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.section.dark .callout {
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold-light);
}

/* ============ FAQ ============ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border: 2px solid rgba(15, 39, 68, 0.1);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

details:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 168, 83, 0.15);
}

details[open] {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), transparent);
}

summary {
  padding: 24px 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.4s ease;
  font-weight: 300;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 0 30px 24px 30px;
  color: var(--gray);
  line-height: 1.8;
}

/* ============ COMPARE ============ */
.compare {
  background: var(--white);
  border: 2px solid rgba(15, 39, 68, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.compare:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateX(10px);
}

.compare.highlight {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
  box-shadow: var(--shadow-gold);
}

.compare h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--navy);
}

.compare p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ FOUNDERS ============ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.founder-card {
  text-align: center;
  padding: 50px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.founder-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.founder-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}

.founder-card p {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ============ APPROACH ============ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px;
  transition: var(--transition);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--navy);
  position: relative;
}

.approach-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
}

/* ============ FORMS ============ */
.form {
  display: grid;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid rgba(15, 39, 68, 0.15);
  border-radius: 16px;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 168, 83, 0.15);
}

input::placeholder, textarea::placeholder {
  color: var(--gray);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* ============ GRID LAYOUTS ============ */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .grid3, .grid2, .split { grid-template-columns: 1fr; }
}

/* ============ PAGE HEADERS ============ */
.page-head {
  padding: 180px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.page-head .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.page-head .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.35);
}

.page-head .bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 25, 41, 0.9), rgba(15, 39, 68, 0.8));
}

.page-head .container {
  position: relative;
  z-index: 1;
}

.page-head .h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
}

.page-head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  max-width: 650px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-primary);
  border-top: 2px solid var(--border-gold);
  padding: 100px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.3));
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.9;
  max-width: 450px;
}

.footer-contact h4 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ BADGE ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(212, 168, 83, 0.15);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ============ UTILITIES ============ */
.small { font-size: 13px; color: var(--gray); }
.note { font-size: 13px; color: var(--gray); margin-top: 10px; }

/* ============ SCROLL ANIMATIONS ============ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============ CARD FOR LIGHT SECTIONS ============ */
.card {
  background: var(--white);
  border: 2px solid rgba(15, 39, 68, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--navy);
}

.card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.card.dark {
  background: var(--navy);
  border-color: rgba(212, 168, 83, 0.2);
}

.card.dark h3 { color: var(--white); }
.card.dark p { color: rgba(255, 255, 255, 0.7); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { padding: 120px 0 80px 0; min-height: auto; }
  .section { padding: 80px 0; }
  .hero-actions { flex-direction: column; }
  .cta { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 50px; }
}

/* ============ LOADING ANIMATION ============ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: loader-pulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}
